home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / svr4 / limits.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  255b  |  18 lines

  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. #ifdef __GNUC__
  5. #include_next <limits.h>
  6. #else
  7. #include "/usr/include/limits.h"
  8. #endif
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12.  
  13. #ifndef _POSIX_OPEN_MAX
  14. # include <ulimit.h>
  15. # define _POSIX_OPEN_MAX ulimit(UL_GDESLIM, 0)
  16. #endif
  17.  
  18.